home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir25 / cbupda01.zip / CBREPORT.BAT next >
DOS Batch File  |  1993-12-08  |  3KB  |  138 lines

  1. @echo off
  2. if exist report.msd del report.msd
  3. if exist tell.rpt del tell.rpt
  4. cls
  5. @echo  
  6. echo Please wait while we check your system information...
  7. ctty nul
  8. msd /p report.msd
  9. if exist report.msd goto DOMSD
  10. mem > tell.rpt
  11. set >> tell.rpt
  12. chkdsk >> tell.rpt
  13. ver >> tell.rpt
  14. winver >> tell.rpt
  15. type c:\autoexec.bat >> tell.rpt
  16. type c:\config.sys >> tell.rpt
  17. if exist c:\windows\win.ini type c:\windows\win.ini >> tell.rpt
  18. if exist c:\windows\system.ini type c:\windows\system.ini >> tell.rpt
  19. if exist tell.rpt goto DOTELL
  20. :DOMSD
  21. winver >> report.msd
  22. ctty con
  23. cls
  24. echo ***** MSD SYSTEM INFORMATION *****
  25.    find /i "Memory:" report.msd
  26.    find /i "Video:" report.msd
  27.    find /i "Operating System:" report.msd
  28.    find /i "Windows Version" report.msd
  29.    find /i "fixed disk," report.msd
  30.    @echo  
  31.    pause
  32. cls
  33. echo *****  CONFIG.SYS  *****
  34.    find /i "386max" report.msd
  35.    find /i "qemm" report.msd
  36.    find /i "emm386.exe" report.msd
  37.    find /i "smartdrv.sys" report.msd
  38.    find /i "dblspace.sys" report.msd
  39.    find /i "files=" report.msd
  40.    @echo  
  41.    pause
  42.    cls
  43. echo *****  AUTOEXEC.BAT  *****
  44.    find /i "smartdrv" report.msd
  45.    find /i "path=" report.msd
  46.    find /i "win/3" report.msd
  47.    find /i "win /3" report.msd
  48.    @echo  
  49.    pause
  50.    cls
  51. echo *****  SYSTEM.INI  *****
  52.    find /i "SCRNSAVE.EXE=" report.msd
  53.    find /i "PermSwap" report.msd
  54.    find /i "display.drv=" report.msd
  55.    find "shell=" report.msd
  56.    find /i "system.drv=" report.msd
  57.    @echo  
  58.    pause
  59.    cls
  60. echo *****  WIN.INI  *****
  61.    find /i "run=" report.msd
  62.    find /i "load=" report.msd
  63.    find /i "temp=" report.msd
  64.    @echo  
  65.    pause
  66.    cls
  67. echo *****  TSR CHECK  *****   
  68.    find /i "bunny" report.msd
  69.    find /i "logimenu" report.msd
  70.    find /i "ad_wrap.com" report.msd
  71.    find /i "ad-dos.com" report.msd
  72.    find /i "BILLMIND" report.msd
  73.    find /i "BIZMIND" report.msd
  74. @echo  
  75. echo *****  Done  *****
  76. @echo  
  77. pause
  78. goto END
  79. :DOTELL
  80. ctty con
  81. cls
  82. echo ***** SYSTEM INFORMATION *****
  83.    find /i "Total memory" tell.rpt
  84.    find /i "bytes total contiguous extended memory" tell.rpt
  85.    find /i "DOS Version" tell.rpt
  86.    find /i "Windows Version" tell.rpt   
  87.    find /i "bytes available on disk" tell.rpt
  88.    @echo  
  89.    pause
  90. cls
  91. echo *****  CONFIG.SYS  *****
  92.    find /i "386max" tell.rpt
  93.    find /i "qemm" tell.rpt
  94.    find /i "emm386.exe" tell.rpt
  95.    find /i "smartdrv.sys" tell.rpt
  96.    find /i "dblspace.sys" tell.rpt
  97.    find /i "files=" tell.rpt
  98.    @echo  
  99.    pause
  100.    cls
  101. echo *****  AUTOEXEC.BAT  *****
  102.    find /i "smartdrv" tell.rpt
  103.    find /i "path=" tell.rpt
  104.    find /i "win/3" tell.rpt
  105.    find /i "win /3" tell.rpt
  106.    @echo  
  107.    pause
  108.    cls
  109. echo *****  SYSTEM.INI  *****
  110.    find /i "SCRNSAVE.EXE=" tell.rpt
  111.    find /i "PermSwap" tell.rpt
  112.    find /i "display.drv=" tell.rpt
  113.    find "shell=" tell.rpt
  114.    find /i "system.drv=" tell.rpt
  115.    @echo  
  116.    pause
  117.    cls
  118. echo *****  WIN.INI  *****
  119.    find /i "run=" tell.rpt
  120.    find /i "load=" tell.rpt
  121.    find /i "temp=" tell.rpt
  122.    @echo  
  123.    pause
  124.    cls
  125. echo *****  TSR CHECK  *****   
  126.    find /i "bunny" tell.rpt
  127.    find /i "logimenu" tell.rpt
  128.    find /i "ad_wrap.com" tell.rpt
  129.    find /i "ad-dos.com" tell.rpt
  130.    find /i "BILLMIND" tell.rpt
  131.    find /i "BIZMIND" tell.rpt
  132. @echo  
  133. echo *****  Done  *****
  134. @echo  
  135. pause
  136. :END
  137. @echo  
  138.